From 46903a910094a83aa68c4b1d8ac1713610745c8b Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 20 Jan 2011 21:36:50 -0500 Subject: [PATCH] Fix a crash during DND https://bugzilla.gnome.org/show_bug.cgi?id=640105 --- gdk/gdkoffscreenwindow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdk/gdkoffscreenwindow.c b/gdk/gdkoffscreenwindow.c index b3c53afca9..5257bcc236 100644 --- a/gdk/gdkoffscreenwindow.c +++ b/gdk/gdkoffscreenwindow.c @@ -784,7 +784,7 @@ gdk_offscreen_window_class_init (GdkOffscreenWindowClass *klass) impl_class->set_opacity = NULL; impl_class->set_composited = NULL; impl_class->destroy_notify = NULL; - impl_class->register_dnd = NULL; + impl_class->register_dnd = gdk_offscreen_window_do_nothing; impl_class->drag_begin = NULL; impl_class->process_updates_recurse = gdk_offscreen_window_process_updates_recurse; impl_class->sync_rendering = NULL; -- 2.30.2